Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633432 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/59 - Color Choosing Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/59 - Color Choosing Game/style.css
117 Views
0 Comments
.head{
background-color: lightgoldenrodyellow;
height: 255px;
position: absolute;
left: 0;
right: 0;
top: 0;
z-index: -1;
index.html cody/swapnilsparsh/30DaysOfJavaScript/59 - Color Choosing Game/index.html
292 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Color game</title>
script.js cody/swapnilsparsh/30DaysOfJavaScript/59 - Color Choosing Game/script.js
179 Views
0 Comments
const
result = document.getElementById("result"),
row1 = document.querySelector(".row1"),
row2 = document.querySelector(".row2"),
onElem = document.querySelectorAll("div.on"),
statusElem=document.getElementById("status")
;